home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / grap_cad / cim1 / cim2.exe / lzh / MANUAL.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-05-13  |  394 b   |  18 lines

  1. echo off
  2. cls
  3. if "%1" == "P" goto PRINTER
  4. if "%1" == "p" goto PRINTER
  5. if "%1" == "S" goto SCREEN
  6. if "%1" == "s" goto SCREEN
  7. echo To print the CIMplicity User's Manual on your printer, type:
  8. echo   MANUAL P
  9. echo To display it on the screen (MORE.COM must be available), type:
  10. echo   MANUAL S
  11. goto DONE
  12. :PRINTER
  13. type MANUAL.TXT >PRN
  14. goto DONE
  15. SCREEN
  16. type MANUAL.TXT | MORE
  17. :DONE
  18.